home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / djgpp / src / binutils.252 / ld / ldscript / i386aout.xbn < prev    next >
Encoding:
Text File  |  1994-12-17  |  850 b   |  44 lines

  1. OUTPUT_FORMAT("a.out-i386")
  2. OUTPUT_ARCH(i386)
  3. SEARCH_DIR(/lib); SEARCH_DIR(/usr/lib); SEARCH_DIR(/usr/local/lib); SEARCH_DIR(/usr/local/go32/lib);
  4. SECTIONS
  5. {
  6.   . = 0x1000;
  7.   .text :
  8.   {
  9.     CREATE_OBJECT_SYMBOLS
  10.     *(.text)
  11.     /* The next six sections are for SunOS dynamic linking.  The order
  12.        is important.  */
  13.     *(.dynrel)
  14.     *(.hash)
  15.     *(.dynsym)
  16.     *(.dynstr)
  17.     *(.rules)
  18.     *(.need)
  19.     _etext = .;
  20.     __etext = .;
  21.   }
  22.   . = .;
  23.   .data :
  24.   {
  25.     /* The first three sections are for SunOS dynamic linking.  */
  26.     *(.dynamic)
  27.     *(.got)
  28.     *(.plt)
  29.     *(.data)
  30.     *(.linux-dynamic) /* For Linux dynamic linking.  */
  31.     CONSTRUCTORS
  32.     _edata  =  .;
  33.     __edata  =  .;
  34.   }
  35.   .bss :
  36.   {
  37.     __bss_start = .;
  38.    *(.bss)
  39.    *(COMMON)
  40.    _end = ALIGN(4) ;
  41.    __end = ALIGN(4) ;
  42.   }
  43. }
  44.